C# 클래스 CoverMyMeds.Claims.Utilities

Basic utility class for sending claims to CoverMyMeds
파일 보기 프로젝트 열기: covermymeds/pharmacy-claim-api-csharp-ref

공개 메소드들

메소드 설명
ConstructClaimPostData ( string username, string password, string api_key, string claim, string>.List optional_post_variables ) : byte[]

Function to generate a URL encoded byte array to send over an HTTP Post to the CoverMyMeds Claim API Server

RequestClaim ( string api_endpoint, byte claim_data ) : WebResponse

Function to send URL encoded parameters over an HTTP Post to the CoverMyMeds Claims Service

메소드 상세

ConstructClaimPostData() 공개 정적인 메소드

Function to generate a URL encoded byte array to send over an HTTP Post to the CoverMyMeds Claim API Server
public static ConstructClaimPostData ( string username, string password, string api_key, string claim, string>.List optional_post_variables ) : byte[]
username string CoverMyMeds Account
password string Password for CoverMyMedsAccount
api_key string API Key for submitting claims. This is provided upon request from CoverMyMeds
claim string NCPDP Claim D0
optional_post_variables string>.List Optional data that can be submitted with a claim that does not have a defined place in the NCPDP claim
리턴 byte[]

RequestClaim() 공개 정적인 메소드

Function to send URL encoded parameters over an HTTP Post to the CoverMyMeds Claims Service
public static RequestClaim ( string api_endpoint, byte claim_data ) : WebResponse
api_endpoint string URI for submitting HTTP Posts to CoverMyMeds Claims Service
claim_data byte URL Encoded byte stream containing parameters for claim
리턴 System.Net.WebResponse